document rpath option in manifest
authorJorge Israel Peña <jorge.israel.p@gmail.com>
Sun, 19 Oct 2014 21:33:29 +0000 (14:33 -0700)
committerJorge Israel Peña <jorge.israel.p@gmail.com>
Sun, 19 Oct 2014 21:33:29 +0000 (14:33 -0700)
src/doc/manifest.md

index 2410bcf322b17453eca7e4a98df71255fefd0c6e..bb00c389af78e84ac6a7bab59c98ad3778514b60 100644 (file)
@@ -108,21 +108,25 @@ along with the defaults for each profile.
 [profile.dev]
 opt-level = 0  # Controls the --opt-level the compiler builds with
 debug = true   # Controls whether the compiler passes -g or `--cfg ndebug`
+rpath = true   # Controls whether the compiler passes `-C rpath`
 
 # The release profile, used for `cargo build --release`
 [profile.release]
 opt-level = 3
 debug = false
+rpath = false
 
 # The testing profile, used for `cargo test`
 [profile.test]
 opt-level = 0
 debug = true
+rpath = true
 
 # The benchmarking profile, used for `cargo bench`
 [profile.bench]
 opt-level = 3
 debug = false
+rpath = false
 
 # The documentation profile, used for `cargo doc`
 [profile.doc]